home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / superbat / runme.bat < prev    next >
DOS Batch File  |  1988-05-11  |  1KB  |  84 lines

  1. echo off
  2. nocurs
  3. raw on
  4. toggle +c > nul
  5. cls
  6. :no
  7. echo 
  8. echo 
  9. answer What is your first name? 
  10. set first=%answer%
  11. echo 
  12. echo 
  13. answer What is your last name? 
  14. echo 
  15. echo 
  16. echo %first% %answer%
  17. echo Is this correct?
  18. :reply
  19. reply
  20. if errorlevel 78 if not errorlevel 79 goto no
  21. if errorlevel 89 if not errorlevel 90 goto yes
  22. beep
  23. echo You must answer Y for yes or N for no!
  24. goto reply
  25. :yes
  26. cls
  27. echo 
  28. echo 
  29. echo Well hello %first% !
  30. echo 
  31. echo This is a sample batch file that I have written to illustrate
  32. echo the unique capabilities that these little utilities can give!
  33. wait 7
  34. echo 
  35. echo 
  36. echo In a minute I will display some basic information about these
  37. echo utilities.
  38. echo 
  39. echo The display will pause at each full screen, whenever you are
  40. echo ready to move on to the next screen you can type any key to
  41. echo continue.
  42. wait 10
  43. echo 
  44. echo 
  45. echo To continue go ahead and
  46. pause
  47. cls
  48. type page1.doc
  49. reply
  50. cls
  51. type page2.doc
  52. reply
  53. type page3.doc
  54. reply
  55. type page4.doc
  56. reply
  57. type page5.doc
  58. reply
  59. type page6.doc
  60. reply
  61. type page7.doc
  62. reply
  63. type page8.doc
  64. reply
  65. type page9.doc
  66. reply
  67. type page10.doc
  68. reply
  69. cls
  70. echo 
  71. echo 
  72. echo Well that concludes this demonstration.
  73. echo 
  74. echo I hope that you have found it interesting %first%!
  75. echo And I hope that you find these utilities useful.
  76. wait 5
  77. echo 
  78. echo 
  79. echo Good Bye!
  80. normal
  81. toggle -c > nul
  82. raw off
  83. echo 
  84.